Google Chart API

Google Chart API
Original author(s) Google
Initial release 2007
Stable release February 2010
Website http://code.google.com/apis/chart/

The Google Chart API is a tool that lets people create a chart from some data and embed it in a web page. Google creates a PNG image of a chart from data and formatting parameters in an HTTP request. Many types of charts are supported, and by making the request into an image tag, people can simply include the chart in a web page.

Originally it was an internal tool to support rapid embedding of charts within Google's own applications (like Google Finance for example). Google decided it would be a useful tool to make available to web developers. It officially launched on December 6, 2007.[1]

Currently, line, bar, pie and radar charts, as well as Venn diagrams, scatter plots, sparklines, maps, google-o-meters, and QR codes are supported.

Contents

Example

The following URL creates the pie chart below:
http://chart.apis.google.com/chart?
chs=200x200
&chdlp=b
&chtt=Uberman
&chdl=Asleep|Awake
&chd=t:1,11,1,11,1,11,1,11,1,11,1,11
&cht=p&
chco=586F8E,7D858F,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F,586F8E,7D858F

External Libraries

Instead of creating the URL request manually, there are many open source libraries available for most programming languages.

Platform Name Website
Java Google Chart API wrapper [2] http://code.google.com/p/googlechartwrapper/
Java charts4j [3] http://code.google.com/p/charts4j/
C#/.NET ngchart http://code.google.com/p/ngchart/
Ruby gchart http://rubyforge.org/projects/gchart
Python google-chartwrapper http://code.google.com/p/google-chartwrapper/
PHP gchartphp http://code.google.com/p/gchartphp/

References

External links